home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / clesson / c.dir / 00064_Bitmap_64 (.png) < prev    next >
Bitmap Image  |  1995-04-05  |  170KB  |  445x377  |  4-bit (9 colors)
Labels: text | screenshot | font
OCR: // Class for fixed point arithmetic // This scheme uses a 32-bit long for 16:16 // fixed point representation #include <math.h> class FIXED { private: enum FIXEDconsts { Fraction, Whole } union { long complete; short parts[2];